Welcome![Sign In][Sign Up]
Location:
Search - java txt

Search list

[Other resourcenearest.txt

Description: 用java求最短路径问题的 源程序,希望 对 有 用的 人能有 帮助 。
Platform: | Size: 1095 | Author: 潘辉 | Hits:

[Othercounter.txt

Description: JAVA编写的类似windows带的简易计算器的源程序,希望能对有用 人 有所帮助。
Platform: | Size: 1693 | Author: 潘辉 | Hits:

[JSP/Javajava

Description: java java常用表达式的功能.txt 有一些常用的达式及功能说明
Platform: | Size: 1237 | Author: 66 | Hits:

[JSP/Java使用Java将Word转为Html或txt!

Description: 使用Java将Word转为Html或txt!-Word will use Java to Html or txt!
Platform: | Size: 1918 | Author: 阿唐 | Hits:

[Other resourcetxt

Description: 用java写的简单记事本程序,看看。还行吧。
Platform: | Size: 54241 | Author: 王柳波 | Hits:

[Multimedia program记事本.txt

Description: 用java编写的一个小型记事本,希望大家来修改或提意见,谢谢!-prepared with a small notebook, we hope to modify or opinions, thank you!
Platform: | Size: 11457 | Author: 傻傻 | Hits:

[Other resourcePHP的十个高级技巧(TXT)

Description: 球超过300万个互联网网站的管理员都在使用PHP,使得它成为最为普及的服务器端脚本语言之一。其特点是运行速度快、稳定可靠、跨平台,而且是开放源代码软件。随你使用的水平不同,PHP可以很简单,也可以很复杂,可以只使用它发送HTML表格元素,还可以在PHP应用程序中集成Java和XML。-ball over three million Internet site manager in the use of PHP, making it the most popular server-side scripting language. Its characteristics are fast and reliable, cross-platform, but is open-source software. As you use different levels, PHP can be very simple and very complex, can only use it to send HTML form elements, but also in PHP applications integrate Java and XML.
Platform: | Size: 13499 | Author: 冷风 | Hits:

[OtherApriori算法的简单java实现

Description: 数据挖掘的Apriori算法的简单java实现,读入datasource.txt的数据,结果保存在result.txt中。
Platform: | Size: 9086 | Author: cbsj1668@163.com | Hits:

[SourceCodejava文件加密

Description: 基于java实现的对与txt文本的简易文件加密功能,启动时的user:hcz,password:55555.
Platform: | Size: 24774 | Author: hczhust | Hits:

[WEB Code细分时钟刻度算法.txt

Description: import java.awt.*; import javax.swing.*; public class Exercise8_12 extends JFrame { // Main method with three auguments: // args[0]: hour // args[1]: minute // args[2]: second public static void main(String[] args) { // Declare hour, minute, and second values int hour = 0; int minute = 0; int second = 0; // Check usage and get hour, minute, second if (args.length > 3) { System.out.println( "Usage: java DisplayClock hour minute second"); System.exit(0); } else if (args.length == 3) { hour = new Integer(args[0]).intValue(); minute = new Integer(args[1]).intValue(); second = new Integer(args[2]).intValue(); } else if (args.length == 2) { hour = new Integer(args[0]).intValue(); minute = new Integer(args[1]).intValue(); } else if (args.length == 1) { hour = new Integer(args[0]).intValue(); } // Create a frame to hold the clock Exercise8_12 frame = new Exercise8_12(); frame.setTitle("Exercise 8.12: Display Clock"); frame.getContentPane().add(new DrawClock(hour, minute, second)); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(300, 350); frame.setVisible(true); } } class DrawClock extends JPanel { private int hour; private int minute; private int second; protected int xCenter, yCenter; protected int clockRadius; // Construct a clock panel public DrawClock(int hour, int minute, int second) { this.hour = hour; this.minute = minute; this.second = second; } // Draw the clock public void paintComponent(Graphics g) { super.paintComponent(g); // Initialize clock parameters clockRadius = (int)(Math.min(getSize().width, getSize().height)*0.7*0.5); xCenter = (getSize().width)/2; yCenter = (getSize().height)/2; // Draw circle g.setColor(Color.black); g.drawOval(xCenter - clockRadius,yCenter - clockRadius, 2*clockRadius, 2*clockRadius); g.drawString("12",xCenter-5, yCenter-clockRadius); g.drawString("9",xCenter-clockRadius-10,yCenter+3); g.drawString("3",xCenter+clockRadius,yCenter+3); g.drawString("6",xCenter-3,yCenter+clockRadius+10); // Draw second hand int sLength = (int)(clockRadius*0.85); int xSecond = (int)(xCenter + sLength*Math.sin(second*(2*Math.PI/60))); int ySecond = (int)(yCenter - sLength*Math.cos(second*(2*Math.PI/60))); g.setColor(Color.red); g.drawLine(xCenter, yCenter, xSecond, ySecond); // Draw minute hand int mLength = (int)(clockRadius*0.75); int xMinute = (int)(xCenter + mLength*Math.sin(minute*(2*Math.PI/60))); int yMinute = (int)(yCenter - mLength*Math.cos(minute*(2*Math.PI/60))); g.setColor(Color.blue); g.drawLine(xCenter, yCenter, xMinute, yMinute); // Draw hour hand int hLength = (int)(clockRadius*0.6); int xHour = (int)(xCenter + hLength*Math.sin((hour+minute/60.0)*(2*Math.PI/12))); int yHour = (int)(yCenter - hLength*Math.cos((hour+minute/60.0)*(2*Math.PI/12))); g.setColor(Color.green); g.drawLine(xCenter, yCenter, xHour, yHour); // Display current time in string g.setColor(Color.red); String time = "Hour: " + hour + " Minute: " + minute + " Second: " + second; FontMetrics fm = g.getFontMetrics(); g.drawString(time, (getSize().width - fm.stringWidth(time))/2, yCenter+clockRadius+30); // Display more details on the clock for (int i=0; i<60; i++) { double percent; if (i%5 == 0) { percent = 0.9; } else { percent = 0.95; } //细分时钟刻度 int xOuter = (int)(xCenter + clockRadius*Math.sin(i*(2*Math.PI/60))); int yOuter = (int)(yCenter - clockRadius*Math.cos(i*(2*Math.PI/60))); int xInner = (int)(xCenter + percent*clockRadius*Math.sin(i*(2*Math.PI/60))); int yInner = (int)(yCenter - percent*clockRadius*Math.cos(i*(2*Math.PI/60))); g.drawLine(xOuter, yOuter, xInner, yInner); } } }
Platform: | Size: 4270 | Author: hellosoft010@sina.com | Hits:

[File Operatecharsettools_1.0.2

Description: 编码转换工具 charset tool v1.0.2 我写的文本编码转换工具。可以对常见字符集做转换,包括简繁通,big5-->gb2312.唯一缺点是要安装java JRE.-transcoding tool charset tool v1.0.2 I wrote the text encoding conversion tools. Can the common character set conversion done, including 66.248.97.196 Qualcomm, big5-- gt; Gb2312. The only drawback is to install java JRE.
Platform: | Size: 208896 | Author: 飞飞 | Hits:

[Chess Poker gamesJAVA6个

Description: 这里有六个在BlueJ下编写的JAVA代码,有华容道游戏,玩围棋游戏,音频播放和画图工具,统计投票工具和一个时钟。-BlueJ prepared in the Java code, Puzzle, Go play games, audio playback, and drawing tools, statistical tools and a voting clock.
Platform: | Size: 885760 | Author: 曹泰瑜 | Hits:

[JSP/Java人工智能(课程)

Description: 其中readme是整个程序的要求,1.txt是测试程序,hw3.java是编写的程序。主要是为了实现8-puzzle问题(手机上都有的那个小游戏,9个格子,8个数字,让你移动到一种终止状态)。-readme which is the entire process, 1.txt test procedures hw3.java preparation procedures. Major is to achieve 8-puzzle (the phone is the small game, nine lattice, the eight figures, you moved to the termination of a state).
Platform: | Size: 106496 | Author: 顾小军 | Hits:

[JSP/Java使用Java将Word转为Html或txt!

Description: 使用Java将Word转为Html或txt!-Word will use Java to Html or txt!
Platform: | Size: 2048 | Author: 阿唐 | Hits:

[AI-NN-PRAI_maze

Description: 载入txt文件迷宫,含几种搜索方法,例如depth first search, breadth first search等-maze included txt file containing several search methods, such as depth first search, breadth first search, etc.
Platform: | Size: 14336 | Author: 黄丽雯 | Hits:

[OtherPHP的十个高级技巧(TXT)

Description: 球超过300万个互联网网站的管理员都在使用PHP,使得它成为最为普及的服务器端脚本语言之一。其特点是运行速度快、稳定可靠、跨平台,而且是开放源代码软件。随你使用的水平不同,PHP可以很简单,也可以很复杂,可以只使用它发送HTML表格元素,还可以在PHP应用程序中集成Java和XML。-ball over three million Internet site manager in the use of PHP, making it the most popular server-side scripting language. Its characteristics are fast and reliable, cross-platform, but is open-source software. As you use different levels, PHP can be very simple and very complex, can only use it to send HTML form elements, but also in PHP applications integrate Java and XML.
Platform: | Size: 13312 | Author: 冷风 | Hits:

[File OperateJAddressList

Description: 我自己写的Java通讯录,界面用的是swt包,使用时请看readme.txt文件,需要加载dll文件.-I write Java correspondence, the interface kits can be used when See readme.txt document, we need to load dll file.
Platform: | Size: 2866176 | Author: 小强 | Hits:

[GUI DevelopTest_Online_demo

Description: JSP 的一个网业程序,作好的Demo欢迎大家使用 我自己写的Java通讯录,界面用的是swt包,使用时请看readme.txt文件,需要加载dll文件-JSP a network industry procedures, make the Demo Everyone is welcome to use my own writing Java correspondence, the interface kits can be used when See readme.txt document, we need to load dll file
Platform: | Size: 628736 | Author: 冷云 | Hits:

[xml-soap-webserviceXML编辑器

Description: 用Java编写的一个XML编辑工具.这个SimpleXmlEditor.zip里有齐所有的文件, 包括可运行的.class文件打包.jar文件, 运行软件的快捷方式.bat文件, 说明文件.html文件, feedback.txt文件, 要特别申明的是一定要看清楚说明文件, 要不然, 很可能不能顺利运行.-prepared by using a Java XML editing tools. The Qi SimpleXmlEditor.zip there are all the documents, including operational. Class paper packaging. Jar files, run software faster manner. Bat documents note. Html document feedback.txt documents to the Special the state must be careful to note, otherwise, it may not be a smooth operation.
Platform: | Size: 34816 | Author: 大灰熊 | Hits:

[JSP/Java二人聊天室

Description: 一个用Java编写的小型聊天室,能够很好的完成一个聊天的功能。运行前请仔细阅读readme.txt文件!-using Java to prepare a small chat rooms, to complete a good chat function. Before the operation carefully read the readme.txt file!
Platform: | Size: 8192 | Author: jeff | Hits:
« 1 2 34 5 6 7 8 9 10 ... 27 »

CodeBus www.codebus.net